home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / Include / devSCSITape.h < prev    next >
C/C++ Source or Header  |  1991-08-11  |  1KB  |  34 lines

  1. /*
  2.  * devSCSITape.h --
  3.  *
  4.  *    Declarations of device switch routines for SCSI Tape drives.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/kernel/dev/RCS/devSCSITape.h,v 9.1 90/09/11 12:13:03 rab Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DEVSCSITAPE
  19. #define _DEVSCSITAPE
  20.  
  21. extern ReturnStatus DevSCSITapeOpen _ARGS_((Fs_Device *devicePtr, int useFlags,
  22.     Fs_NotifyToken token, int *flagsPtr));
  23. extern ReturnStatus DevSCSITapeRead _ARGS_((Fs_Device *devicePtr,
  24.     Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
  25. extern ReturnStatus DevSCSITapeWrite _ARGS_((Fs_Device *devicePtr,
  26.     Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
  27. extern ReturnStatus DevSCSITapeIOControl _ARGS_((Fs_Device *devicePtr,
  28.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  29. extern ReturnStatus DevSCSITapeClose _ARGS_((Fs_Device *devicePtr,
  30.     int useFlags, int openCount, int writerCount));
  31.  
  32. #endif /* _DEVSCSITAPE */
  33.  
  34.